The testuir utility is a dirty hack to test the remote
you suppose to use with your camera.
Once started it scans COM1..COM4 ports for UIR presence. If found it waits for remote signal
or keyboard stroke and prints received remote code on exit.
In the following test application testuir,
olytake and olyget are put together
for routine picture take automation. I used simple batch file to glue them.
@rem ---- UIRTEST.BAT -----------
:strt
@testuir
@olytake
@olyget -dd:\download -e
@goto strt
@rem ----------------------------
This application waits for IR remote button pressed (ANY button on
almost ANY remote), takes the picture, saves it to HDD and cleans the camera memory, so
the amount of camera memory depends upon the free HDD space available only.
I've tested it with AKAI RC-V9A and AKAI RC-X511E remotes. It works fine, except for
some reason UIR cant detect buttons autorepeat of RC-V9A.
The application is a bit slow, as it initializes the interfaces alot of times.
But it still can be useful - say, for discreet monitoring people in the room who are
using TV or VCR ;-) or if you use low capacity Smartmedia card and you need to scan the book ;-)
In this scenario 2 MB card is sufficient, as camera should hold one image only
(I own spare one, ask if interested).
You can speed up the application by using few olytake calls per one olyget call:
@rem ---- UIRTEST.BAT -----------
:strt
@rem ---- first picture goes to camera card
@testuir
@olytake
@rem ---- second picture goes to camera card
@testuir
@olytake
@rem ---- third picture goes to camera card
@testuir
@olytake
@rem ---- download 3 pictures to HDD and clean the camera memory
@olyget -dd:\download -e
@goto strt
@rem ----------------------------